dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePackage Class / ExecuteProcedure Method / ExecuteProcedure(String,Object[]) Method
The name of the stored procedure or function.
Array of parameters to be passed to the stored procedure.

In This Topic
    ExecuteProcedure(String,Object[]) Method
    In This Topic
    Executes stored procedure or function.
    Syntax
    'Declaration
     
    Public Overloads Sub ExecuteProcedure( _
       ByVal name As String, _
       ByVal ParamArray parameters() As Object _
    ) 
    public void ExecuteProcedure( 
       string name,
       params object[] parameters
    )

    Parameters

    name
    The name of the stored procedure or function.
    parameters
    Array of parameters to be passed to the stored procedure.
    Remarks

    If a procedure with specified name cannot be found in the package an exception is thrown.

    See Also